projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
989823e
)
Move provide statement back to the top of the file.
author
Glenn Morris
<rgm@gnu.org>
Sun, 25 Nov 2007 01:58:54 +0000
(
01:58
+0000)
committer
Glenn Morris
<rgm@gnu.org>
Sun, 25 Nov 2007 01:58:54 +0000
(
01:58
+0000)
lisp/eshell/esh-maint.el
patch
|
blob
|
history
diff --git
a/lisp/eshell/esh-maint.el
b/lisp/eshell/esh-maint.el
index c74ec4d25f270bbad22aec0805ed4fb57addc64b..9ee666218e51f89e8ad1689e6e272f50bff90798 100644
(file)
--- a/
lisp/eshell/esh-maint.el
+++ b/
lisp/eshell/esh-maint.el
@@
-26,6
+26,10
@@
;;; Code:
+;; FIXME this cannot be moved to the end of the file without causing a
+;; recursive require during bootstrap. What a mess.
+(provide 'esh-maint)
+
(and (fboundp 'font-lock-add-keywords)
(font-lock-add-keywords
'emacs-lisp-mode
@@
-136,7
+140,5
@@
;; (delete-file "README.texi")
;; (kill-buffer "README.texi"))
-(provide 'esh-maint)
-
;;; arch-tag: 662089b6-78ec-48c5-b94f-d212279e8902
;;; esh-maint.el ends here